home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / veventspart5.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  27 lines

  1. /*
  2. This is one of the constituent views of vallevents... collecting all events together.
  3. */
  4. create or replace view veventspart5 as
  5. select DET_SEQ_NUM ,FAREBOX_GLID ,CONV_DATE,  0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  6.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, 
  7. rpad('(40) Way Event :  ' || waycodes.descr, 200) event
  8. from wayevnt, waycodes
  9. where wayevnt.code = waycodes.code 
  10. union 
  11. select DET_SEQ_NUM, FAREBOX_GLID ,CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  12.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, 
  13. '(41) Way Iss Tkt, Descrptr=' || to_char(descriptor) || '  val: ' || to_char(card_val, '99999.99') event
  14. from wayissue 
  15. union 
  16. select  DET_SEQ_NUM, FAREBOX_GLID, CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  17.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, 
  18. '(42) Way Stor Val Cd , Descrptr=' || to_char(descriptor) || ' --NewVal: '|| to_char(newval, '09999.99') || ', OldVal: ' || to_char(oldval, '0999.99')
  19.  event
  20. from waysvc 
  21. union 
  22. select  DET_SEQ_NUM ,FAREBOX_GLID, CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  23.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, 
  24. '(43)Way Validate Pass  ,Descrptr= '|| to_char(descriptor) event
  25. from wayvalpass;
  26.  
  27.